home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_768 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2005-09-23  |  375 b   |  17 lines

  1. on(rollOver){
  2.    if(_root.money >= 200)
  3.    {
  4.       _root.description = "Buy an extra life. 200$.";
  5.       return undefined;
  6.    }
  7.    if(_root.money <= 199)
  8.    {
  9.       _root.description = "You cannot afford an extra life. 200$.";
  10.       return undefined;
  11.    }
  12.    if(_root.lives >= 6)
  13.    {
  14.       _root.description = "You have the maximum number of lives.";
  15.    }
  16. }
  17.